css flex center

201

flexbox align right and left -

.primary-nav {
    display:-webkit-flex;
    display:flex;
    list-style-type:none;
    padding:0;
    justify-content:flex-end;
}

.left {
    margin-right:auto;
}

flex align top css -

align-items: flex-start | flex-end | center | baseline | stretch

.container {
  display: flex;
  align-items: flex-start;
}

how to horizontally center header at the top of page with flexbox css -

.box.flex {
  display: flex;
  justify-content: center;
}

Comments

Submit
0 Comments